home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib25 / abort.c < prev    next >
C/C++ Source or Header  |  1992-09-17  |  185b  |  16 lines

  1. /* ERS */
  2.  
  3. #include <signal.h>
  4. #include <stdlib.h>
  5. #include <unistd.h>
  6.  
  7. #ifndef SIGABRT
  8. #define SIGABRT SIGIOT
  9. #endif
  10.  
  11. __EXITING abort()
  12. {
  13.     raise(SIGABRT);
  14.     exit(127);
  15. }
  16.